//---------------------------------------------------------------------------

#ifndef calculH
#define calculH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published:	// Composants gérés par l'EDI
        TEdit *EuroZone;
        TEdit *FrancZone;
        TLabel *Label1;
        TLabel *Label2;
        TButton *Sortie;
        TButton *about;
        void __fastcall SortieClick(TObject *Sender);
        void __fastcall zone(TObject *Sender, char &Key);
        void __fastcall FrancZoneChange(TObject *Sender);
        void __fastcall EuroZoneChange(TObject *Sender);
        void __fastcall aboutClick(TObject *Sender);
private:	// Déclarations de l'utilisateur
public:		// Déclarations de l'utilisateur
        __fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
